f68a42f9423dd4b1ec1cca844ee8915f2a5082fd,Adjust/test/src/androidTest/java/com/adjust/sdk/test/TestActivityHandler.java,TestActivityHandler,testSessions,#,510

Before Change


        AdjustFactory.setSubsessionInterval(1000);

        // create the config to start the session
        AdjustConfig config = new AdjustConfig(context, "123456789012", AdjustConfig.ENVIRONMENT_SANDBOX);

        // set verbose log level
        config.setLogLevel(LogLevel.INFO);

        // start activity handler with config
        ActivityHandler activityHandler = getActivityHandler(config);

        SystemClock.sleep(3000);

        // test init values
        checkInitTests(AdjustConfig.ENVIRONMENT_SANDBOX, "INFO", false);

        // test first session start
        checkFirstSession();

After Change


        AdjustFactory.setSubsessionInterval(1000);

        // create the config to start the session
        AdjustConfig config = getConfig(LogLevel.INFO);

        // start activity handler with config
        ActivityHandler activityHandler = startAndCheckFirstSession(config, LogLevel.INFO);